Network Vulnerability Scanner

{% for port in common_ports %} {% endfor %}
Enter additional ports separated by commas. Supports ranges (e.g., 1000-2000) and individual ports (e.g., 1234, 5678, 8081).
{% if target and all_ports %}

Selected Target and Ports

Target: {{ target }}

Ports: {{ all_ports|join(', ') }}

{% endif %} {% if scan_results and scan_results.scan %}

Scan Results

{% for port_info in scan_results.scan %} {% endfor %}
Port Protocol State Service Version Vulnerabilities (CVEs)
{{ port_info.port }} {{ port_info.protocol }} {{ port_info.state }} {{ port_info.name }} {{ port_info.version }} {% set cves = cve_results.get(port_info.port, []) %} {% if cves %}
    {% for cve in cves %}
  • {{ cve.id }}: {{ cve.summary }}
    {% if cve.cvss %}CVSS: {{ cve.cvss }}
    {% endif %} {% if cve.published %}Published: {{ cve.published }}
    {% endif %} {% if cve.references %} Reference {% endif %}
  • {% endfor %}
{% else %} No known CVEs found. {% endif %}
{% elif scan_results and scan_results.error %}

Scan Error

{{ scan_results.error }}

{% endif %}